home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / Apple II / Essentials / Technical.Notes / PDOS / TN.PDOS.008 < prev    next >
Encoding:
Text File  |  1988-12-15  |  1.6 KB  |  38 lines  |  [TEXT/pdos]

  1. Apple II
  2. Technical Notes
  3. _____________________________________________________________________________
  4.                                                   Developer Technical Support
  5.  
  6.  
  7. ProDOS 8
  8. #8:    Dealing with /RAM
  9.  
  10. Revised by:    Matt Deatherage                                  November 1988
  11. Written by:    Kerry Laidlaw                                     October 1984
  12.  
  13. This Technical Note formerly described conventions for dealing with the built-
  14. in ProDOS 8 RAM disk, /RAM.
  15. _____________________________________________________________________________
  16.  
  17. Section 5.2.2 of the ProDOS 8 Technical Reference Manual now documents the 
  18. conventions on how to handle /RAM, including how to disconnect it, how to 
  19. reconnect it, and precautions you should follow if doing either, which were 
  20. covered in this Note.  The manual also includes sample source code.
  21.  
  22. Executing the sample code which comes with the manual to disconnect /RAM has 
  23. the undesired effect of decreasing the maximum number of volumes on-line when 
  24. used with versions of ProDOSĀ 8 prior to 1.2.  This side effect is because 
  25. earlier versions of ProDOS 8 do not have the capability to remove the volume 
  26. control block (VCB) entry which is allocated for /RAM when it is installed.
  27.  
  28. In later versions of ProDOS 8 (1.2 and later), this problem no longer exists, 
  29. and you should issue an ON_LINE call to a device after disconnecting it.  This 
  30. call returns error $28 (no device connected), but it also erases the VCB entry 
  31. for the disconnected device.
  32.  
  33.  
  34. Further Reference
  35. o    ProDOS 8 Technical Reference Manual
  36. o    ProDOS 8 Update Manual
  37.  
  38.